home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / slock / dlltest1.dfm / dlltest1.txt
Text File  |  1998-09-24  |  3KB  |  150 lines

  1. object frmBufferTools: TfrmBufferTools
  2.   Left = 200
  3.   Top = 109
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'DLL Tools'
  7.   ClientHeight = 387
  8.   ClientWidth = 465
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object grpBuffer: TGroupBox
  17.     Left = 8
  18.     Top = 64
  19.     Width = 449
  20.     Height = 145
  21.     Caption = 'Buffer contents'
  22.     TabOrder = 0
  23.     object mmoBuffer: TMemo
  24.       Left = 8
  25.       Top = 16
  26.       Width = 353
  27.       Height = 121
  28.       Font.Charset = ANSI_CHARSET
  29.       Font.Color = clWindowText
  30.       Font.Height = -11
  31.       Font.Name = 'Courier New'
  32.       Font.Style = []
  33.       ParentFont = False
  34.       ScrollBars = ssVertical
  35.       TabOrder = 0
  36.     end
  37.     object btnShowBuffer: TButton
  38.       Left = 366
  39.       Top = 16
  40.       Width = 75
  41.       Height = 25
  42.       Caption = 'Show Buffer'
  43.       TabOrder = 1
  44.       OnClick = btnShowBufferClick
  45.     end
  46.   end
  47.   object grpFindBuffer: TGroupBox
  48.     Left = 8
  49.     Top = 216
  50.     Width = 449
  51.     Height = 97
  52.     Caption = 'Find the location of the Buffer'
  53.     TabOrder = 1
  54.     object lblFindExpl: TLabel
  55.       Left = 8
  56.       Top = 16
  57.       Width = 330
  58.       Height = 52
  59.       Caption = 
  60.         'If you wish to modify the DLL (for example if you wish to use it' +
  61.         ' for other purposes within your application), you have to locate' +
  62.         ' the position of the buffer and put this information into the DL' +
  63.         'L to allow SLock to write the correct information.'
  64.       WordWrap = True
  65.     end
  66.     object lblOffsetLabel: TLabel
  67.       Left = 8
  68.       Top = 72
  69.       Width = 228
  70.       Height = 13
  71.       Caption = 'The offset of the buffer from file start is:'
  72.       Font.Charset = DEFAULT_CHARSET
  73.       Font.Color = clWindowText
  74.       Font.Height = -11
  75.       Font.Name = 'MS Sans Serif'
  76.       Font.Style = [fsBold]
  77.       ParentFont = False
  78.     end
  79.     object lblOffsetData: TLabel
  80.       Left = 240
  81.       Top = 72
  82.       Width = 34
  83.       Height = 13
  84.       Caption = 'No info'
  85.     end
  86.     object btnFindBuffer: TButton
  87.       Left = 368
  88.       Top = 16
  89.       Width = 75
  90.       Height = 25
  91.       Caption = 'Find Buffer'
  92.       TabOrder = 0
  93.       OnClick = btnFindBufferClick
  94.     end
  95.   end
  96.   object grpWriteBuffer: TGroupBox
  97.     Left = 8
  98.     Top = 320
  99.     Width = 449
  100.     Height = 61
  101.     Caption = 'Write Buffer'
  102.     TabOrder = 2
  103.     object lblWriteExpl: TLabel
  104.       Left = 8
  105.       Top = 24
  106.       Width = 320
  107.       Height = 26
  108.       Caption = 
  109.         'This will write some information into the buffer to test that it' +
  110.         ' has been located correctly..'
  111.       WordWrap = True
  112.     end
  113.     object btnWriteBuffer: TButton
  114.       Left = 368
  115.       Top = 16
  116.       Width = 75
  117.       Height = 25
  118.       Caption = 'Write Buffer'
  119.       TabOrder = 0
  120.       OnClick = btnWriteBufferClick
  121.     end
  122.   end
  123.   object grpDLLName: TGroupBox
  124.     Left = 8
  125.     Top = 0
  126.     Width = 449
  127.     Height = 57
  128.     Caption = 'DLL Name'
  129.     TabOrder = 3
  130.     object lblDLLExpl: TLabel
  131.       Left = 16
  132.       Top = 16
  133.       Width = 280
  134.       Height = 26
  135.       Caption = 
  136.         'This is the name of the DLL you want to work on (it must be in t' +
  137.         'he current directory):'
  138.       WordWrap = True
  139.     end
  140.     object edtDLLName: TEdit
  141.       Left = 312
  142.       Top = 16
  143.       Width = 121
  144.       Height = 21
  145.       TabOrder = 0
  146.       Text = 'lock.dll'
  147.     end
  148.   end
  149. end
  150.